/* the styles for the elements */

* {
	margin: 0;
	padding: 0;
}

:root {
	--global-color-1: #002280;
}

body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
	width: 600px;
	margin: 0 auto;
	border: 3px solid #145a93;
    background-color: #def3fd;
}

a:focus, a:hover {
	font-style: italic;
}
/* the styles for the header */
header {
	padding: 1.5em 0 2em 0;
	border-bottom: 3px solid #145a93;
	background-image: linear-gradient(
	    30deg, #79d2f5 0%, #79d2f5 30%, white 50%, #79d2f5 80%, #79d2f5 100%);
}
header h2 {
	font-size: 170%;
	color: #005e94;
}
header h3 {
	font-size: 130%;
}
header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: 2px 2px 2px;
	color:#004e6d;
}

/* the styles for the main content */
main {
	clear: left;
	padding: 0 30px;
}
main h1 {
	color: var(--global-color-1);
	font-size: 150%;
	border: 3px double #002280;
	margin-bottom: .75em;
	border-radius: 10px;
	box-shadow: 5px 5px;
	padding: .5em 0 .5em 2em;
	background-color: white;
}
main h2 {
	color: var(--global-color-1);
	font-size: 130%;
}
main h3 {
	font-size: 105%;
}

/* the styles for the footer */
footer p {
	text-align: center;
}